home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / gpm < prev    next >
Text File  |  2005-10-18  |  951b  |  39 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/sys-libs/gpm/files/gpm.rc6,v 1.12 2004/07/15 01:02:02 agriffis Exp $
  5.  
  6. #NB: Config is in /etc/conf.d/gpm
  7.  
  8. depend() {
  9.     need localmount
  10.     use hotplug logger
  11. }
  12.  
  13. checkconfig() {
  14.     if [ -z "$MOUSEDEV" ] || [ -z "$MOUSE" ] ; then
  15.         eerror "You need to setup MOUSEDEV and MOUSE in /etc/conf.d/gpm first"
  16.         return 1
  17.     fi
  18. }
  19.  
  20. start() {
  21.     checkconfig || return 1
  22.  
  23.     local params=""
  24.     [ -n "$RESPONSIVENESS" ] && params="$params -r $RESPONSIVENESS"
  25.     [ -n "$REPEAT_TYPE" ]    && params="$params -R$REPEAT_TYPE"
  26.     [ -n "$APPEND" ]         && params="$params $APPEND "
  27.     
  28.     ebegin "Starting gpm"
  29.     start-stop-daemon --start --quiet --exec /usr/sbin/gpm \
  30.         -- -m ${MOUSEDEV} -t ${MOUSE} ${params}
  31.     eend ${?}
  32. }
  33.  
  34. stop() {
  35.     ebegin "Stopping gpm"
  36.     start-stop-daemon --stop --quiet --pidfile /var/run/gpm.pid
  37.     eend ${?}
  38. }
  39.